3aaaba24e1b93656ad95098746d31cd94063bde0,java/squeek/veganoption/blocks/tiles/TileEntityComposter.java,TileEntityComposter,closeInventory,#,591

Before Change


		}

		this.worldObj.addBlockEvent(this.xCoord, this.yCoord, this.zCoord, this.getBlockType(), CLIENT_EVENT_NUM_USING_PLAYERS, this.numPlayersUsing);
		this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord, this.zCoord, this.getBlockType());
		this.worldObj.notifyBlocksOfNeighborChange(this.xCoord, this.yCoord - 1, this.zCoord, this.getBlockType());
	}

	public void updateLidAngle()

After Change


		}

		this.worldObj.addBlockEvent(pos, this.getBlockType(), CLIENT_EVENT_NUM_USING_PLAYERS, this.numPlayersUsing);
		this.worldObj.notifyNeighborsOfStateChange(pos, this.getBlockType());
		this.worldObj.notifyNeighborsOfStateChange(pos.down(), this.getBlockType());
	}

	public void updateLidAngle()